home *** CD-ROM | disk | FTP | other *** search
/ Champak 106 / Vol 106.iso / games / jump_gam.swf / scripts / DefineButton2_933 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2010-04-12  |  238 b   |  15 lines

  1. on(release){
  2.    if(soundStatus == 1)
  3.    {
  4.       music.music(0);
  5.       soundStatus = 0;
  6.       mStatus.gotoAndStop("off");
  7.    }
  8.    else
  9.    {
  10.       music.music(1);
  11.       soundStatus = 1;
  12.       mStatus.gotoAndStop("on");
  13.    }
  14. }
  15.